home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / comms / ts3j.zip / CHK_UART.DOC < prev    next >
Text File  |  1994-03-01  |  2KB  |  60 lines

  1. CHK_UART V1.0
  2. Copyright (C) 1992 Marc Genois.
  3. All Rights Reserved.
  4.  
  5.  
  6. What CHK_UART do ?
  7. ==================
  8.  
  9. CHK_UART is an utility to allow you to check the UART type used by your serial
  10. ports.
  11.  
  12. The program chk_uart is able to detect the following UART :
  13.  
  14.                        -8250
  15.                        -8250A or 16450
  16.                        -16550 (no FIFO buffers)
  17.                        -16550A (with FIFO buffers)
  18.                        -IBM UART (with DMA and FIFO)
  19.  
  20.  
  21. How to use it?
  22. ==============
  23.  
  24. Usage : chk_uart [com #] ...
  25. ex : 'chk_uart 1 2' will check for COM1 and COM2
  26.  
  27.  
  28. Program revision
  29. ================
  30.  
  31. 92-09-22        Release of version 1.0
  32.  
  33.  
  34. C source code is available via :
  35.  
  36.         Fidonet : Marc Genois 1:240/20
  37.         Compuserve : 72570,1513
  38.  
  39.         Marc Genois
  40.         Sainte-Foy, Québec
  41.         Canada
  42.  
  43.  
  44. IBM PC UART history
  45. ===================
  46.  
  47. The original UART used on a PC was the 8250 chip. The first "upgrade" was the
  48. 16450, used in the PC AT. The 16450 provide faster interfaces between the UART
  49. and the processor, but it's only functional difference from the 8250 was the
  50. addition of a scratch register where the processor could store a byte of data.
  51. Then the 8250A was introduced in the PC Convertible, the first IBM laptop. The
  52. 8250A if functionally identical to the 16450. In 1987, with the release of the
  53. PS/2 models, come the 16550 UART. But the UART had a bug that disable its main
  54. feature : FIFO buffers. So came the fixed version, the 16550A. Recently, IBM
  55. has introduced a new UART in it's PS/2 model 57, 90 and 95. This new UART is
  56. fully backward compatible to the 8250 and feature : FIFO queues, DMA transfer
  57. and speed up to 345,600 bps.
  58.  
  59. For high speed (9600 and up) a 16550A chip is recommanded.
  60.